home *** CD-ROM | disk | FTP | other *** search
/ Aminet 35 / Aminet 35 (2000)(Schatztruhe)[!][Feb 2000].iso / Aminet / util / cli / FixSuffix.lha / FixSuffix.readme < prev    next >
Encoding:
Text File  |  1999-12-19  |  726 b   |  42 lines

  1. Short:    gives numbering suffixes a fixed length
  2. Uploader: alexander.richter@01019freenet.de (Alexander Richter)
  3. Author:   alexander.richter@01019freenet.de (Alexander Richter)
  4. Type:     util/cli
  5.  
  6.  
  7. INSTALLATION
  8. ------------
  9. copy fixsuffix c:
  10.  
  11.  
  12. USAGE
  13. -----
  14. fixsuffix <file> [<suffix-length>]
  15.  
  16. suffix-length defaults to 5
  17.  
  18.  
  19. EXAMPLES
  20. --------
  21. fixsuffix frame.10 4
  22.  
  23. will rename the file "frame.10" to "frame.0010".
  24.  
  25. fixsuffix frame.3
  26.  
  27. will rename the file "frame.3" to "frame.00003" (default length of 5 is used).
  28.  
  29.  
  30. BATCH PROCESSING
  31. ----------------
  32. can be done with the AmigaDOS LIST command, e.g.:
  33.  
  34. LIST frame.(?|??|???) LFORMAT "fixsuffix %N 4" >t:script
  35. sort t:script t:script
  36. execute t:script
  37.  
  38.  
  39. BUGS
  40. ----
  41. -no error handling
  42.